DelPart = Instance.new('Tool', owner.Backpack) DelPart.Grip = CFrame.new(0.5,0,0,0,0,0,1) Hold = Instance.new('Part', DelPart) Hold.Name = "Handle" Hold.Size = Vector3.new(1,2,0.2) local S = Instance.new("Sound",Hold) S.SoundId = "rbxassetid://7086388496" S.Volume = 3 Hold.Touched:Connect(function(Hit) if Hit.Name == "Base" then return else S:Play() Hit:Destroy() end end) DelPart.Activated:Connect(function() local toolanim = Instance.new("StringValue",DelPart) toolanim.Name = "toolanim" toolanim.Value = "Slash" end) wait(1.5) local M = Instance.new("SpecialMesh",Hold) M.MeshId = "rbxassetid://430345282" M.TextureId = "rbxassetid://430345284" M.Scale = Vector3.new(0.3,0.3,0.3)